home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / src / mactech / volume14_1998 / 14.12.sit / 14.12 / Poor Man's Bryce 3.0 / PictRead.h < prev    next >
C/C++ Source or Header  |  1998-08-08  |  571b  |  45 lines

  1. #pragma once
  2. // PictRead.h
  3. //
  4. // prototypes for PictRead.c
  5. //
  6. // ©1998 Kas Thomas and Xplain Corp.
  7. //
  8.  
  9.  
  10. #ifndef PictRead_h
  11. #define PictRead_h
  12.  
  13.  
  14. #include <stdlib.h>
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif    /* __cplusplus */
  19.  
  20.  
  21. #define IO_ALERT 401
  22.  
  23. PicHandle OpenPICTFile( 
  24.     short     vRefNum, 
  25.     Str255     fName);
  26.  
  27. PicHandle GetPICTFile( 
  28.     void);
  29.     
  30. short LoadMapPICT(
  31.     PicHandle             pict,
  32.     unsigned long         mapSizeX,
  33.     unsigned long         mapSizeY,
  34.     TQ3StoragePixmap     *bMap);
  35.     
  36. void IOErr( OSErr errcode );
  37.     
  38. #ifdef __cplusplus
  39. }
  40. #endif    /* __cplusplus */
  41.  
  42.     
  43. #endif  /*  PictRead_h  */
  44.  
  45.